home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / BEERSRC.ZIP / GLOBDEFS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-03  |  826 b   |  39 lines

  1.  
  2. /*-------------------------------------------------------*/
  3. /*                                                       */
  4. /*                G L O B D E F S . H                    */
  5. /*                                                       */
  6. /*            [c] Copyright by Alpha - Helix             */
  7. /*            written by Dany Schochini 1989             */
  8. /*                                                       */
  9. /*-------------------------------------------------------*/
  10.  
  11.  
  12.  
  13.  
  14. #define    FALSE         0
  15. #define    TRUE          (!FALSE)
  16.  
  17.  
  18. #ifndef BYTEDEF
  19.  
  20.    typedef unsigned char     byte;
  21.    #define BYTEDEF
  22.  
  23. #endif
  24.  
  25. #ifndef ULONGDEF
  26.  
  27.    typedef unsigned long     ulong;
  28.    #define ULONGDEF
  29.  
  30. #endif
  31.  
  32.  
  33. #ifndef LOCAL
  34.  
  35.    #define LOCAL(xx)         static xx near pascal
  36.  
  37. #endif
  38.  
  39.